home *** CD-ROM | disk | FTP | other *** search
/ Joystick Magazine 1996 April / Joystick.Hors serie avril 96Flashback+demos.iso / f2b / install.bat < prev    next >
DOS Batch File  |  1996-04-01  |  2KB  |  101 lines

  1. @echo off
  2. cls
  3. echo FADE TO BLACK - (c) DELPHINE SOFTWARE 1995
  4. rem Version of 27 june 1995
  5.  
  6. if "%1==" goto SYNTAXE
  7. if "%2==" goto SYNTAXE
  8. if "%3==" goto SYNTAXE
  9.  
  10. set SRCDRV=%1\F2B
  11. set DSTDRV=%2
  12. set DSTDIR=%3
  13.  
  14. echo.
  15. echo Minimum installation of game FADE TO BLACK.
  16. echo.
  17. echo You need 12 Mb free on your hard disk drive to install the game.
  18. echo.
  19.  
  20. if not exist %DSTDRV%\%DSTDIR%\nul goto NOT_ALREADY_EXIST
  21.  
  22. echo WARNING : Destination directory %DSTDRV%\%DSTDIR% already exist !
  23. echo.
  24.  
  25. :NOT_ALREADY_EXIST
  26.  
  27. echo Press any key to install the game on drive %DSTDRV% in directory \%DSTDIR%
  28. echo or Ctrl-C to abort installation now ...
  29. echo.
  30. pause
  31. echo Copying files to disk ...
  32.  
  33. md %DSTDRV%\%DSTDIR%
  34. if not exist %DSTDRV%\%DSTDIR%\nul goto ERR_NOT_EXIST
  35.  
  36. cd %DSTDRV%\%DSTDIR%
  37. md %DSTDRV%data
  38. cd %DSTDRV%data
  39. md %DSTDRV%sound
  40. md %DSTDRV%drivers
  41. cd %DSTDRV%\%DSTDIR%
  42. copy %SRCDRV%\data\level1.spr %DSTDRV%\%DSTDIR%\data > NUL
  43. copy %SRCDRV%\data\level1.f3d %DSTDRV%\%DSTDIR%\data > NUL
  44. copy %SRCDRV%\data\level1.p3d %DSTDRV%\%DSTDIR%\data > NUL
  45. copy %SRCDRV%\data\level0.dem %DSTDRV%\%DSTDIR%\data > NUL
  46.  
  47. copy %SRCDRV%\data\sound\*.sng %DSTDRV%\%DSTDIR%\data\sound > NUL
  48. copy %SRCDRV%\data\sound\*.snd %DSTDRV%\%DSTDIR%\data\sound > NUL
  49. copy %SRCDRV%\data\drivers %DSTDRV%\%DSTDIR%\data\drivers > NUL
  50.  
  51. copy %SRCDRV%\delphine.ex_ %DSTDRV%\%DSTDIR% > NUL
  52. copy %SRCDRV%\delphine.ini %DSTDRV%\%DSTDIR% > NUL
  53. copy %SRCDRV%\dos4gw.exe %DSTDRV%\%DSTDIR% > NUL
  54. copy %SRCDRV%\trigo.dat %DSTDRV%\%DSTDIR% > NUL
  55. copy %SRCDRV%\*.bat %DSTDRV%\%DSTDIR% > NUL
  56. copy %SRCDRV%\read.me %DSTDRV%\%DSTDIR% > NUL
  57.  
  58.  
  59. %DSTDRV%
  60. cd \%DSTDIR%
  61. ren delphine.ex_ delphine.exe
  62. del install.bat > NUL
  63. del inst_ful.bat > NUL
  64.  
  65. echo.
  66. echo You should read the READ.ME file. (type READ.ME |MORE)
  67. echo.
  68. echo Run SETSOUND if you have a sound card.
  69. echo.
  70. echo Type F2B and press ENTER key to start the game.
  71. echo.
  72.  
  73. goto END
  74.  
  75. :ERR_NOT_EXIST
  76.  
  77. echo.
  78. echo Cannot create destination directory !
  79. echo Aborting installation, game not installed
  80. echo.
  81. goto END
  82.  
  83. :END_ERR
  84.  
  85. goto END
  86.  
  87. :SYNTAXE
  88.  
  89. echo.
  90. echo Syntax :
  91. echo "%0 <src drive> <dest drive> <dest directory>"
  92. echo.
  93. echo Example :
  94. echo To install the game in the C:\F2B path with the CDROM in the D: drive.
  95. echo "%0 D: C: F2B"
  96. echo.
  97.  
  98. :END
  99. :fin
  100. exit
  101.